home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_08_03 / 8n03096a < prev    next >
Text File  |  1990-03-18  |  1KB  |  55 lines

  1.  
  2.  
  3. *** Table 1 ***
  4.  
  5. Summary of <stdlib.h>
  6.  
  7. Macros:
  8.  
  9. EXIT_FAILURE, EXIT_SUCCESS, MB_CUR_MAX, RAND_MAX, NULL
  10.  
  11. Types:
  12.  
  13. div_t, ldiv_t, size_t, wchar_t
  14.  
  15. Function Prototypes:
  16.  
  17. void abort(void);
  18. int abs(int);
  19. int atexit(void (*)(void));
  20. double atof(const char *);
  21. int atoi(const char *);
  22. long atol(const char *);
  23. void *bsearch
  24.     (
  25.     const void *, const void *, size_t, size_t,
  26.     int (*)(const void *, const void *)
  27.     );
  28. void *calloc(size_t, size_t);
  29. div_t div(int, int);
  30. void exit(int);
  31. void free(void *);
  32. char *getenv(const char *);
  33. long labs(long);
  34. ldiv_t ldiv(long, long);
  35. void *malloc(size_t);
  36. int mblen(const char *, size_t);
  37. int wctomb(char *, wchar_t);
  38. int mbtowc(wchar_t, const char *, size_t);
  39. void qsort
  40.     (
  41.     void *, size_t, size_t, 
  42.     int (*)(const void *, const void *)
  43.     );
  44. int rand(void);
  45. void *realloc(void *, size_t);
  46. void srand(unsigned);
  47. double strtod(const char *, char **);
  48. long strtol(const char *, char **, int);
  49. unsigned long strtoul(const char *, char **, int);
  50. int system(const char *);
  51.  
  52. #define _STDLIB_H_INCLUDED
  53. #endif
  54.  
  55.